home *** CD-ROM | disk | FTP | other *** search
/ Holiday Maker / Holiday Maker (1991)(Software 2000).iso / devs / mountlist next >
Text File  |  1991-08-06  |  1KB  |  53 lines

  1. /* An example MOUNTLIST file enabling a 5.25" disk to be mounted
  2.    as DF2: and an interactive serial port mounted as AUX:
  3. */
  4.  
  5. /* If you only have 1 3.5" disk, change the name to DF1: and the Unit to 1 */
  6. DF2:       Device = trackdisk.device
  7.            Unit   = 2
  8.            Flags  = 1
  9.            Surfaces  = 2
  10.            BlocksPerTrack = 11
  11.            Reserved = 2
  12.        PreAlloc = 11
  13.            Interleave = 0
  14.            LowCyl = 0  ;  HighCyl = 39
  15.            Buffers = 5
  16.            BufMemType = 3 
  17. #
  18. /* An example mount entry for preparing a hard disk for use
  19.    The hard disk is not included; this is only an example.
  20. */
  21.  
  22. RES0:      Device = hddisk.device
  23.            Unit   = 1
  24.            Flags  = 0
  25.            Surfaces  = 4
  26.            BlocksPerTrack = 17
  27.            Reserved = 2
  28.            Interleave = 0
  29.            LowCyl = 0  ;  HighCyl = 1
  30.            Buffers = 1
  31.            BufMemType = 3
  32. #
  33.  
  34. /*  This is provided as an example of an alternative type of 
  35.     non-filing device mount.  Please note that L:aux-handler
  36.     is not provided, and thus this mount does not work.
  37. */
  38.  
  39. AUX:       Handler = L:aux-handler
  40.            Stacksize = 700
  41.            Priority = 5
  42. #
  43. /* This is an example of a non-filing system mount using a handler written
  44.    in C.  The SPEAKER: device is not included on this disk, and is used as
  45.    and example only.
  46. */
  47.  
  48. SPEAKER:   Handler = L:s-handler
  49.            Stacksize = 1000
  50.            Priority = 5
  51.        GlobVec = 1
  52. #
  53.